home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJBSN116.ARJ / YYERROR.C < prev    next >
C/C++ Source or Header  |  1991-03-10  |  68b  |  7 lines

  1. #include <stdio.h>
  2.  
  3. yyerror(char *s)
  4. {
  5.   printf("%s\n", s);
  6. }
  7.